home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / groff_src.lha / Groff-1.07 / troff / troff.h < prev    next >
C/C++ Source or Header  |  1992-11-25  |  2KB  |  89 lines

  1. // -*- C++ -*-
  2. /* Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  3.      Written by James Clark (jjc@jclark.com)
  4.  
  5. This file is part of groff.
  6.  
  7. groff is free software; you can redistribute it and/or modify it under
  8. the terms of the GNU General Public License as published by the Free
  9. Software Foundation; either version 2, or (at your option) any later
  10. version.
  11.  
  12. groff is distributed in the hope that it will be useful, but WITHOUT ANY
  13. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License along
  18. with groff; see the file COPYING.  If not, write to the Free Software
  19. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  20.  
  21.  
  22. #include <stdio.h>
  23. #include <ctype.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <stddef.h>
  27. #include <stdlib.h>
  28. #include <errno.h>
  29.  
  30. #include "lib.h"
  31. #include "assert.h"
  32. #include "device.h"
  33.  
  34. #ifdef __GNUG__
  35. #define NO_RETURN volatile
  36. #else
  37. #define NO_RETURN
  38. #endif
  39.  
  40. NO_RETURN void cleanup_and_exit(int n);
  41.  
  42. typedef int units;
  43.  
  44. extern units scale(units n, units x, units y); // scale n by x/y
  45.  
  46. extern units units_per_inch;
  47.  
  48. extern int ascii_output_flag;
  49. extern int suppress_output_flag;
  50.  
  51. extern int tcommand_flag;
  52. extern int vresolution;
  53. extern int hresolution;
  54. extern int sizescale;
  55.  
  56. #include "cset.h"
  57. #include "cmap.h"
  58. #include "errarg.h"
  59. #include "error.h"
  60.  
  61. enum warning_type {
  62.   WARN_CHAR = 01,
  63.   WARN_NUMBER = 02,
  64.   WARN_BREAK = 04,
  65.   WARN_DELIM = 010,
  66.   WARN_EL = 020,
  67.   WARN_SCALE = 040,
  68.   WARN_RANGE = 0100,
  69.   WARN_SYNTAX = 0200,
  70.   WARN_DI = 0400,
  71.   WARN_MAC = 01000,
  72.   WARN_REG = 02000,
  73.   WARN_TAB = 04000,
  74.   WARN_RIGHT_BRACE = 010000,
  75.   WARN_MISSING = 020000,
  76.   WARN_INPUT = 040000,
  77.   WARN_ESCAPE = 0100000,
  78.   WARN_SPACE = 0200000,
  79.   WARN_FONT = 0400000
  80.   // change WARN_TOTAL if you add more warning types
  81. };
  82.  
  83. const int WARN_TOTAL = 0777777;
  84.  
  85. int warning(warning_type, const char *,
  86.         const errarg & = empty_errarg,
  87.         const errarg & = empty_errarg,
  88.         const errarg & = empty_errarg);
  89.